summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-10-13 20:00:07 +0200
committerGitHub <noreply@github.com>2022-10-13 20:00:07 +0200
commit26b76d2eaf9dac2e43bf80a8a6cdf56812586726 (patch)
treead6e33a13c34858e1dfb635d36172e69ce5af845
parentMerge pull request #9034 from liamwhite/result-macros (diff)
parentsettings: Update aspect_ratio range (diff)
downloadyuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.gz
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.bz2
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.lz
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.xz
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.zst
yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.zip
-rw-r--r--src/common/settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index d2452c93b..0eb98939c 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -431,7 +431,7 @@ struct Values {
FullscreenMode::Exclusive,
#endif
FullscreenMode::Borderless, FullscreenMode::Exclusive, "fullscreen_mode"};
- SwitchableSetting<int, true> aspect_ratio{0, 0, 3, "aspect_ratio"};
+ SwitchableSetting<int, true> aspect_ratio{0, 0, 4, "aspect_ratio"};
SwitchableSetting<int, true> max_anisotropy{0, 0, 5, "max_anisotropy"};
SwitchableSetting<bool> use_speed_limit{true, "use_speed_limit"};
SwitchableSetting<u16, true> speed_limit{100, 0, 9999, "speed_limit"};